print("**************** PROGRAM TO PERFORM ARITHMETIC OPERATIONS ****************")
print("ENTER YOUR CHOICE\n1.ADD\n2.Subtract\n3.Multiply\n4.Divide\n")
a = int(input('Enter an integer: '))
b = int(input('Enter an integer: '))
c = int(input('Enter your choice operand: '))

if c == 1:
    d = a + b
    print("The sum is: ", d)
elif c == 2:
    e = a - b
    print("The difference is: ", e)
elif c == 3:
    f = a * b
    print("The product is: ", f)
elif c == 4:
    g = a // b
    print("The division is: ", g)
else:
    print("Invalid choice entered")